home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ IE Default URLs.xpl < prev    next >
Text File  |  1999-05-22  |  2KB  |  68 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="4"
  4. "UIPATH"="Internet\Internet Explorer\System"
  5. "NAME"="Default URLs"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Blank Page"
  8. "TEXT 2"="Navi. Canceled"
  9. "TEXT 3"="Navi. Failed"
  10. "TEXT 4"="Offline Failed"
  11. "DESCRIPTION 1"="Blank Page: The URL if a blank page should be displayed (default: "res://mshtml.dll/blank.htm")."
  12. "DESCRIPTION 2"="Navigation Canceled: The URL if naviagtion has been cancelled (default: "res://shdocvw.dll/navcancl.htm")."
  13. "DESCRIPTION 3"="Navigation Failed: The URL if IE couldn't complete a naviagation request ("res://shdocvw.dll/navcancl.htm")."
  14. "DESCRIPTION 4"="Offline Failed: The URL to be used if the requested URL couldn't be loaded in offline-mode ("res://shdocvw.dll/offcancl.htm")."
  15. "DESCRIPTION 5"=""
  16. "AUTHOR"="Xteq Systems"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  19. "COMMENT 2"="Version 1.2"
  20.  
  21.  
  22. sP="HKLM\Software\Microsoft\Internet Explorer\AboutURLs\"
  23. vB="blank"
  24. vNC="NavigationCanceled"
  25. vNF="NavigationFailure"
  26. vOI="OfflineInformation"
  27. Sub Plugin_Initialize 
  28.  if RegPathExists(sp) then
  29.   s=RegReadValue(sp&vb)
  30.   SetUIElement 1,s
  31.  
  32.   s=RegReadValue(sp&vnc)
  33.   SetUIElement 2,s
  34.  
  35.   s=RegReadValue(sp&vnf)
  36.   SetUIElement 3,s
  37.  
  38.   s=RegReadValue(sp&voi)
  39.   SetUIElement 4,s
  40.  else
  41.   Disable
  42.  end if 
  43. End Sub
  44.  
  45. Sub Plugin_CheckData(ElementIndex)
  46.  s=GetUIElement(ElementIndex)
  47.  if len(s)<=0 then
  48.   DataInvalid "Please enter a valid URL or, to use the default values, copy the URLs from the description box."
  49.  end if
  50. End Sub
  51.  
  52. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  53.  s=GetUIElement(1)
  54.  Call RegWriteValue(sp&vb,s,1)
  55.  
  56.  s=GetUIElement(2)
  57.  Call RegWriteValue(sp&vnc,s,1)
  58.  
  59.  s=GetUIElement(3)
  60.  Call RegWriteValue(sp&vnf,s,1)
  61.  
  62.  s=GetUIElement(4)
  63.  Call RegWriteValue(sp&voi,s,1)
  64. End Sub
  65.  
  66. Sub Plugin_Terminate 
  67. End Sub
  68.